home *** CD-ROM | disk | FTP | other *** search
- /*
- * native.h
- * Handle native method calls.
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #ifndef __native_h
- #define __native_h
-
- #define MAXSTUBLEN 1024
- #define MAXLIBPATH 1024
- #define MAXLIBS 16
-
- /* Default library info. */
- #define LIBRARYPATH "LD_LIBRARY_PATH"
- #define NATIVELIBRARY "libnative.so"
-
- struct _methods;
-
- void initNative(void);
- int loadNativeLibrary(char*);
- void native(struct _methods*);
-
- #endif
-